home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Gamer UK 120 / CD Gamer Issue 120 (March 2003) (Disc 1).ISO / Shware / Base Golf / BaseGolf.exe / {app} / data / mode_stats.txt < prev    next >
Encoding:
Text File  |  2002-08-31  |  1.8 KB  |  88 lines

  1. mode=statistics
  2. name=Statistics
  3.  
  4. directory=data/images/
  5.  
  6.  
  7. # Animations are any image or sets of images that will be drawn to the screen
  8. #    The animation= tag currently needs to be listed in order you would like to have them drawn.
  9. #    So list the background first
  10. #
  11. #    anim_type: 0 = no animating.  1 = do not loop animation.  2 = loop the animation.
  12.  
  13. animation=world_back,,
  14.  
  15. world_back:
  16.     pos=0,,0
  17.     image_list=course/back_grass_01.png
  18.     file_type=0
  19.     anim_type=0
  20.     anim_size=1
  21.     layer=0
  22.     visible=1
  23.     height=0
  24.     composite_layer=0
  25.  
  26. # Controls are the input that we are going to be watching for, and what action to perform when
  27. #    we see that input.
  28.  
  29. control=input_enter,,input_space,,input_escape,,input_left,,input_right,,input_joy_button
  30.  
  31. input_enter:
  32.     key=enter
  33.     action=select
  34.     
  35. input_space:
  36.     key=space
  37.     action=select
  38.     
  39. input_escape:
  40.     key=escape
  41.     action=select
  42.     
  43. input_left:
  44.     key=left
  45.     action=menu_prev
  46.  
  47. input_right:
  48.     key=right
  49.     action=menu_next
  50.  
  51. input_joy_button:
  52.     joy=button_1
  53.     action=select
  54.  
  55.  
  56. # Actions are the work horses of this system.  They interact with objects, and should be used
  57. #    for as many inter-object calls as makes sense.
  58.  
  59. action=select,,menu_prev,,menu_next
  60.  
  61. # Select in really only works if they didn't make it on the high score, or they already entered their names.
  62. select:
  63.     effect=menu,,select
  64.  
  65. menu_prev:
  66.     effect=menu,,menuPrev
  67.  
  68. menu_next:
  69.     effect=menu,,menuNext
  70.  
  71.  
  72. # Logic controllers are classes that run along with everything eles in the mode, but do not
  73. #    have any specific assets.  They will call actions, and look at all kinds of things in
  74. #    a mode.  You can give them variables to work on here, or all the variables can be
  75. #    initialized in code.
  76.  
  77. logic=menu_logic,,sound_logic
  78.  
  79. menu_logic:
  80.     order=1
  81.     purpose=show_stats
  82.     next_mode=data/mode_score_check.txt
  83.  
  84.  
  85. sound_logic:
  86.     order=2
  87.  
  88.